home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / SERVICES.PAK / DIR.H < prev    next >
Text File  |  1997-05-06  |  633b  |  26 lines

  1. //----------------------------------------------------------------------------
  2. // Borland Services Library
  3. // Copyright (c) 1995, 1997 by Borland International, All Rights Reserved
  4. //
  5. //$Revision:   5.4  $
  6. //
  7. //----------------------------------------------------------------------------
  8. #if !defined(SERVICES_DIR_H)
  9. #define SERVICES_DIR_H
  10.  
  11. #if !defined(SERVICES_DEFS_H)
  12. # include <services/defs.h>
  13. #endif
  14.  
  15. #if defined(BI_COMP_BORLANDC)
  16. # include <dir.h>
  17.  
  18. #elif defined(BI_COMP_MSC)
  19. # include <direct.h>
  20.  
  21. #else
  22. # error  "Need <dir.h> equivalent header file to be included"
  23. #endif
  24.  
  25. #endif  //  SERVICES_DIR_H
  26.